Minor fix for GTK+ mediaLib code.
authorBrian Cameron <Brian.Cameron@sun.com>
Wed, 29 Apr 2009 23:52:32 +0000 (18:52 -0500)
committerBrian Cameron <Brian.Cameron@sun.com>
Wed, 29 Apr 2009 23:52:32 +0000 (18:52 -0500)
commit33f4ead50679294ce6eed04cd014ece44401d626
treefa69aadd67afb3826c0dc9ccf0b372acd93fd56f
parentdae20e256132e4431535e08bac1b1a81febd7e12
Minor fix for GTK+ mediaLib code.

After doing some performance analysis, it was found that the GTK+ mediaLib code
triggers unnecessary lazy loading of dependent libraries.  The current code
uses RTLD_DEFAULT, RTLD_PROBE, RTLD_NEXT, and RTLD_SELF.  However, RTLD_PROBE
is all that is necessary, and avoids triggering the lazy loading.  So this
commit fixes the code to just use RTLD_PROBE.  (Bug 580678)
gdk-pixbuf/pixops/pixops.c
gdk/gdkmedialib.c